home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr38 / bowl101n.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-06-10  |  1KB  |  54 lines

  1. echo off
  2. cls
  3. if not exist bowl101.exe goto :errordrive
  4. echo The Bowl101! Install Procedure copies all program
  5. echo files onto your hard drive in a directory called
  6. echo BOWL.
  7. echo INSTALL followed by the drive specification.
  8. echo Example.....
  9. echo.
  10. echo A:    Log to the drive containing BOWL101
  11. echo.
  12. echo.
  13. echo INSTALL C:
  14. echo.
  15. echo.
  16. echo Installs Bowl101! onto drive C:\BOWL
  17. echo.
  18. echo.
  19. echo Press Ctrl-Break if you wish to exit and start again or...
  20. if "%1"=="" goto error
  21. pause
  22. set d=c:
  23. set d=%1%
  24. :Copyall
  25. if exist %1%\bowl\bowl.mnu goto there
  26. MD %d%\bowl
  27. :there
  28. echo -1>%d%test101.101
  29. if not exist %d%test101.101 goto :error
  30. del %d%test101.101
  31. copy *.* %d%\bowl
  32. cls 
  33. CD %d%\bowl
  34. %1
  35. if not exist %1%\bowl\6lanes.asn lanes
  36. DOCS
  37. echo *  Installation Complete  *
  38. goto end
  39. :errordrive
  40. echo 
  41. echo.
  42. echo.
  43. echo Please Log to drive containing Bowl101 and try again.
  44. echo.
  45. echo.
  46. goto end
  47. :error
  48. echo 
  49. echo.
  50. echo.
  51. echo Please specify drive to install Bowl101 on.
  52. :end
  53.  
  54.